home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / sun / awt / Symbol.class (.txt) < prev    next >
Encoding:
Java Class File  |  2006-11-29  |  659 b   |  24 lines

  1. package sun.awt;
  2.  
  3. import java.nio.charset.Charset;
  4. import java.nio.charset.CharsetDecoder;
  5. import java.nio.charset.CharsetEncoder;
  6.  
  7. public class Symbol extends Charset {
  8.    public Symbol() {
  9.       super("Symbol", (String[])null);
  10.    }
  11.  
  12.    public CharsetEncoder newEncoder() {
  13.       return new Encoder(this);
  14.    }
  15.  
  16.    public CharsetDecoder newDecoder() {
  17.       throw new Error("Decoder is not implemented for Symbol Charset");
  18.    }
  19.  
  20.    public boolean contains(Charset var1) {
  21.       return var1 instanceof Symbol;
  22.    }
  23. }
  24.